home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Headers / appkit / screens.h < prev    next >
Text File  |  1990-08-13  |  829b  |  32 lines

  1. /*
  2.     screens.h
  3.     Application Kit, Release 2.0
  4.     Copyright (c) 1988, 1989, 1990, NeXT, Inc.  All rights reserved. 
  5. */
  6.  
  7. #import "graphics.h"
  8.  
  9. /*
  10.  * Information about the various screens hooked up to the machine
  11.  * on which the window server is running. This information can be
  12.  * accessed with the getScreens:count: (and various other methods)
  13.  * in Application, Window, and View.
  14.  *
  15.  * You may access the fields of this structure when you get them from
  16.  * these methods.
  17.  */
  18.  
  19. typedef struct _NXScreen {
  20.  
  21.     int screenNumber;        /* Screen number (may be used as */
  22.                 /* argument to framebuffer op). */
  23.     NXRect screenBounds;    /* Bounds of the screen. */
  24.  
  25.     short _reservedShort[6];    /* Don't use these. */
  26.  
  27.     NXWindowDepth depth;    /* Depth of the frame buffer */
  28.  
  29.     int _reserved[3];        /* Don't use these either. */
  30.  
  31. } NXScreen;
  32.